home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / distutils / dep_util.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  88 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''distutils.dep_util
  5.  
  6. Utility functions for simple, timestamp-based dependency of files
  7. and groups of files; also, function based entirely on such
  8. timestamp dependency analysis.'''
  9. __revision__ = '$Id: dep_util.py,v 1.7 2004/11/10 22:23:14 loewis Exp $'
  10. import os
  11. from distutils.errors import DistutilsFileError
  12.  
  13. def newer(source, target):
  14.     """Return true if 'source' exists and is more recently modified than
  15.     'target', or if 'source' exists and 'target' doesn't.  Return false if
  16.     both exist and 'target' is the same age or younger than 'source'.
  17.     Raise DistutilsFileError if 'source' does not exist.
  18.     """
  19.     if not os.path.exists(source):
  20.         raise DistutilsFileError, "file '%s' does not exist" % source
  21.     
  22.     if not os.path.exists(target):
  23.         return 1
  24.     
  25.     ST_MTIME = ST_MTIME
  26.     import stat
  27.     mtime1 = os.stat(source)[ST_MTIME]
  28.     mtime2 = os.stat(target)[ST_MTIME]
  29.     return mtime1 > mtime2
  30.  
  31.  
  32. def newer_pairwise(sources, targets):
  33.     """Walk two filename lists in parallel, testing if each source is newer
  34.     than its corresponding target.  Return a pair of lists (sources,
  35.     targets) where source is newer than target, according to the semantics
  36.     of 'newer()'.
  37.     """
  38.     if len(sources) != len(targets):
  39.         raise ValueError, "'sources' and 'targets' must be same length"
  40.     
  41.     n_sources = []
  42.     n_targets = []
  43.     for i in range(len(sources)):
  44.         if newer(sources[i], targets[i]):
  45.             n_sources.append(sources[i])
  46.             n_targets.append(targets[i])
  47.             continue
  48.     
  49.     return (n_sources, n_targets)
  50.  
  51.  
  52. def newer_group(sources, target, missing = 'error'):
  53.     '''Return true if \'target\' is out-of-date with respect to any file
  54.     listed in \'sources\'.  In other words, if \'target\' exists and is newer
  55.     than every file in \'sources\', return false; otherwise return true.
  56.     \'missing\' controls what we do when a source file is missing; the
  57.     default ("error") is to blow up with an OSError from inside \'stat()\';
  58.     if it is "ignore", we silently drop any missing source files; if it is
  59.     "newer", any missing source files make us assume that \'target\' is
  60.     out-of-date (this is handy in "dry-run" mode: it\'ll make you pretend to
  61.     carry out commands that wouldn\'t work because inputs are missing, but
  62.     that doesn\'t matter because you\'re not actually going to run the
  63.     commands).
  64.     '''
  65.     if not os.path.exists(target):
  66.         return 1
  67.     
  68.     ST_MTIME = ST_MTIME
  69.     import stat
  70.     target_mtime = os.stat(target)[ST_MTIME]
  71.     for source in sources:
  72.         if not os.path.exists(source):
  73.             if missing == 'error':
  74.                 pass
  75.             elif missing == 'ignore':
  76.                 continue
  77.             elif missing == 'newer':
  78.                 return 1
  79.             
  80.         
  81.         source_mtime = os.stat(source)[ST_MTIME]
  82.         if source_mtime > target_mtime:
  83.             return 1
  84.             continue
  85.     else:
  86.         return 0
  87.  
  88.